removed. The former subclasses are now derived directly from `GtkWidget`,
and have a "child" property for their child widget. To add a child, use
the setter for the "child" property (e.g. [method@Gtk.Frame.set_child]) instead
-of `gtk_container_add()`. Adding a child in a ui file with <child> still works.
+of `gtk_container_add()`. Adding a child in a ui file with `<child>` still works.
The affected classes are:
container to support height-for-width).
You may also want to implement the [iface@Gtk.Buildable] interface, to support
-adding children with <child> in ui files.
+adding children with `<child>` in ui files.
### Adapt to GtkContainer removal
The most noticeable change is the use of [method@Gtk.Box.append] or [method@Gtk.Box.prepend]
instead of `gtk_container_add()` for adding children to `GtkBox`, and the change
to use container-specific remove functions, such as [method@Gtk.Stack.remove] instead
-of `gtk_container_remove()`. Adding a child in a ui file with <child> still works.
+of `gtk_container_remove()`. Adding a child in a ui file with `<child>` still works.
The affected classes are: